home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedAgentAboutBox.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  526 b   |  35 lines

  1. /*    ===================
  2.  *    PedAgentAboutBox.hh
  3.  *    ===================
  4.  *
  5.  *    Implemented by PedAgentAboutBox.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include <Events.h>
  11.  
  12. #include "PedAgent.hh"
  13.  
  14. class PedAgentAboutBox : public PedAgent {
  15. public:
  16.     PedAgentAboutBox();
  17.     virtual ~PedAgentAboutBox();
  18.     
  19.     virtual void InitWindow();
  20.     
  21.     // Event processing
  22.     virtual void ProcessKey(EventRecord &inEvent) {}
  23.     
  24. protected:
  25. };
  26.  
  27. #if 0
  28. class PedDocument : public PedAgent {
  29. public:
  30.     virtual bool CloseWindow();
  31.     virtual CloseWindow(bool inSaving);
  32.     
  33. };
  34. #endif
  35.